2B) When you want to import again, run this script:
&all images of the folder are imported.
Images Path
import
from folder
Import all images
from a folder
1998-2000Troi Automatisering
How does this work?
Find unique import file nameB
Import all images from a folder
This example shows how to import multiple images from a folder. Each image will be imported into a separate record.
You need Troi File plug-in installed, which can be found at our web site:
!A) You have to do this only ONCE:
Prepare for multi-import
http://www.troi.com/
Version 3 (20-03-2000) of this example file
- Now makes use of the new GetPathTo (CurrentFile) and SelectFolder functions from version 2.0 of the File plug-in.
1998-2000Troi Automatisering
go to: www.troi.com
PreparedB
Import all images from a folder
0There are more files with the name on this disk.
Continue
1VPlease choose the correct import file: click on the correct button, and press continue
Cancel
chosen import file
1998-2000Troi Automatisering
how does it workB
import
FileSpec
Change import data
<Below is the data that is going to be used to do the import:
2You are now prepared to do the multi images import
Do Multi Import
,B) When you want to import, run this script:
&all images of the folder are imported.
import
from folder
This example imports a file called
ImpoUniq.gif
that is already in the folder of this FMP-file. If you want to change that: it
s in the script
Import 1 Picture
1998-2000Troi Automatisering
to menu
goto www.troi.com
Open file
Set all globals
Check FILE plug-in
Check for NO Troi FM plug-in
----- Multi Image Import ------
Once: Prepare for Multi Import
( Locate unique import file ImpoUNIQ.GIF
GetPathToCurrentFile
Select Import SOURCE folder
&LOOP: Import the files from the folder
----- import scripts ------
Import 1 Picture MAIN
Import 1 Picture (Mac)
Import 1 Picture .BMP
Import 1 Picture .GIF
Import 1 Picture .JPG
Import 1 Picture .TIF
&3 Import 1 Picture .XXX (change to your own format)
Get Extension
*6----- scripts for selecting correct import file ------
,( Ask user to Specify unique import file
.! Select unique import file Rep 1
0! Select unique import file Rep 2
2! Select unique import file Rep 3
1998-2000Troi AutomatiseringB
go to: www.troi.comC
To MenuE
backF
The idea is to let FileMaker do the export to a fixed file first and then copy that exported file to the desired location, giving it the wanted name at the same time. This can be done with the Troi file plug-in in a script by the following steps:G
How does Multi im/export work?I
FileMaker LimitationJ
FileMaker has the limitation that in a script it can only export to a fixed file, or ask the user for a file name. You can not specify the file by a calculation in a script. The same limitations apply when importing records or images.K'The way around this limitation (export)
Export Records [Restore, No dialog, TrExport.tab] export to a fixed location
Set Field [gDestExportFSSpec, gTheFileSpec & "EXP" & Stat] calculate the filepath of the destination
Set Field [gErrorCode, External("TrFile-CopyFile";
gExportFSSpec & "|" &gDestExportFSSpec)] copy the file to the destination
Exit Loop If [...]
End Loop
MGThe sample scripts are a bit more elaborated and do error checking etc.
hFor import the idea is this almost the same: First copy the file to be imported to a fixed file. Then let FileMaker do the import of this fixed file. This works with importing records, pictures and movies. See the sample scripts for more details. One limitation remains: at this moment we know of no way to do a multi-import of pictures by storing a reference.
O'The way around this limitation (import)
Helvetica
Geneva
Arial
Times New Roman
Monaco
Courier
Times
Futura
Courier New
Palatino
4! Select unique import file Rep 4
6! Select unique import file Rep 5
8! Select unique import file Rep 6
:! Select unique import file Rep 7
to how does this work
Check FILE plug-in
A4Important: ALWAYS check if the plug-in is available!B)Check if this is FileMaker 4.0 or higher.CQ
1)) < 4
Set all globals
|("Troi-Set Default Separator"
"|")
Troi-Set Default Separator
A Open file
) = 2
4 = ""
Check for NO Troi FM plug-in
Canceld
This file requires FileMaker 4.0 or higherE/Check if the correct Troi Plug-in is available.F
|("TrFile-Version"
"")
17 ) <> "Troi File Plug-in"
TrFile-Version
Troi File Plug-in
) = 1
Canceld
Troi File Plug-in not found. Please put the Troi File Plug-in into the Extensions folder inside the FileMaker folder.
Also enable all the plug-ins under the application preferences.
Canceld
Troi File Plug-in not found. Please put the Troi File Plug-in into the SYSTEM directory inside the FileMaker directory.
Also enable all the plug-ins under the application preferences.
Import 1 Picture MAIN
)= 1
B/Mac: you can import any file without problem...ClWindows: you need to check for the extension, and use the correct import script (otherwise you get a crash.)D)
] = ".bmp"
] = ".gif"
] = ".jpg"
] = ".tif"
H.This extension is not supported at the moment.
A4Important: ALWAYS check if the plug-in is available!B)Check if this is FileMaker 4.0 or higher.Cy
|("Troi-Version"
"")
15 ) = "Troi FM Plug-in"
Troi-Version
Troi FM Plug-in
) = 1
Canceld
Troi FM Plug-in is still installed, so new plug-in features won't be enabled.
Please remove the Troi FM Plug-in from the Extensions folder inside the FileMaker folder.
Canceld
Troi FM Plug-in is still installed, so new plug-in features won't be enabled.
Please remove the Troi FM Plug-in from the SYSTEM directory inside the FileMaker directory.
zA( Locate unique import file ImpoUNIQ.GIF
A)ImpoUNIQ.GiF should be next to this file.B:First try to use the new "GetPathTo currentFile" function.
add your own types here.J
Cancel
You are trying to import a file that has an extension that is not supported at the moment. Image is skipped.K
Select Import SOURCE folder
A"set no filtering of visible files:B
|("TrFile-SelectFolderDialog"
"Locate the folder with the images")
TrFile-SelectFolderDialog
!Locate the folder with the images|C<ask the user for the first file in the folder to be importedD
make a full path of it.E:
2) <> "$$"
|("TrFile-FileSpec To FullPath"
TrFile-FileSpec To FullPath
Once: Prepare for Multi Import
----- Multi Image Import ------
2) <> "$$"
^ <> ""
D(The path to the currentFile was found...E]
|("TrFile-FileSpec To FullPath"
TrFile-FileSpec To FullPath
) = 1
"\")
-1) ) &
"IMPOUNIQ.GIF"
IMPOUNIQ.GIF
|("TrFile-GetDateModified"
2) = "$$"
TrFile-GetDateModified
4 = ""
J0GetPathTo did not work, try the alternative way.K&....specify the disk to be searched...L!
U = ""
) = 1
|("TrFile-FileSpec To FullPath"
|("TrFile-FindFolder"
"root") )
"C:"
TrFile-FileSpec To FullPath
TrFile-FindFolder
root||
find the impoUNIQ.gif file
|("TrFile-Search"
"-files|"&
U & "|impoUNIQ.gif")
TrFile-Search
-files|
|impoUNIQ.gif
") = 1
only one found... good!R>
R) -1)
7S(more found: ask user which one to take.T7
") > 1
Cancel
More than one "ImpoUniq.gif" file found.
Please specify the path yourself.V>
R) -1)
Cancel
No "ImpoUniq.gif" file found.
Please specify the path yourself.
A&LOOP: Import the files from the folder
|("TrFile-ListFolder"
"files|" &
TrFile-ListFolder
files|
" ) = 0
Find the end of the first lineDF
copy the first line into globalFC
+ 1
64000)
A( Ask user to Specify unique import file
find the impoUNIQ.gif fileB_
1
1 ) )
1
1 ) + 1
1
2 ) -
1
1 ) )
) = 2
|("TrFile-DeleteFile"
TrFile-DeleteFile
|("TrFile-CopyFile"
& "|" &
TrFile-CopyFile
<> 0
Export
Cancelh
Replace
An Error occured. See the layout for an explantion of errors.M
A! Select unique import file Rep 1
A! Select unique import file Rep 2
A! Select unique import file Rep 3
A! Select unique import file Rep 4
A! Select unique import file Rep 5
!A! Select unique import file Rep 6
"A! Select unique import file Rep 7
1
2 ) + 1
1
3 ) -
1
2 ) )
1
3 ) + 1
1
4 ) -
1
3 ) )
1
4 ) + 1
1
5 ) -
1
4 ) )
1
5 ) + 1
1
6 ) -
1
5) )
1
6 ) + 1
1
7 ) -
1
6) )
R <> ""
OKero value
ML@e true, zero and e
Cancellues are false.`
View`
oPlease choose the import file.
#A6----- scripts for selecting correct import file ------
to menu
goto www.troi.com
http://www.troi.com/
Import 1 Picture .GIF
Import 1 Picture .TIF
----- import scripts ------
Import 1 Picture .BMP
Import 1 Picture .JPG
-A3 Import 1 Picture .XXX (change to your own format)
Import 1 Picture (Mac)
Get Extension
A=Split the file into 2 parts: the filename and the extension. B@EG: "picture.tif" has as name "picture" and as extension ".tif".C
"."
64000
-1)
64000)
] >1)
1 ) = "."
"."
64000
-1) -1) &
GetPathToCurrentFile
to how does this work
A"find the path to the current file.B)Introduced in version 2.0 of the plug-in.C
|("TrFile-GetPathTo"
"-currentFileName |" &
) &"|"&
TrFile-GetPathTo
-currentFileName |
JnJQNrNS
F0B/B/B
! )K!
B1B/B/9
B/FQNr1
)K-P1q-T9
JRF1F1B
F1JRJR1
JUNuV
g>k|w
NsJQF0A
B1B0FQJ;9
&g=g>k^k^g^k^g=k^g=c
ozo|s
NsJR=
F1F19
)JJSJTFRJSF0B
F0F2)l9
o~c<c
g=o_k_k_s
k|k\o}b
k_k]g={
g8kYo|s
F1JRNsNs9
F0F2B
F1F2F2>
F5F5NvJUg=g<V
$k^o~o~o
k^o~o~o
g=k^o
K-j)K)K-k=
F2F2NtJUk}g?g?g>g>g=c
g=c<_
g<g>c
k_k_s
k^o~s
NtJSF3B
-l)K1
)L)L9
o_o_s
RzJ8B
NuF2-
1o-N5
o}F6JWF55
1n-n-M1
%(%H)k
-kkZo{o{s
k_k?F
F5F55
%*%,)-
%K%+$
)k)h)h1
-kg9kZkZo{s
%))J)J! -P9
NsNsF1B
-k-k^
kZg9kZo{w
-ko_g>k>k_k?k_c
k_k_o
k_k_o
)h)Ko{{
kZg9F15
)J-k^
g9kZo{s
o}o^k^o_o
g?k~g<!
1m-k5
g9kYs
F2F2F
k^k_k_g_k
k?o_w
o|o|s
k_k_g>o
k?k]c
4o{c8%(
)L)+-L)L-j9
kZo{o|w
o~k^k_o_k_k_g>
k?k[s
kYkyo{s
NTF39
k^o~k_k
k?g?k_k_o
g?+k_g=o
g:k[%*%*)J-K-k9
g9o{o|w
k^o_k?
g>g?g?g=k^g?o_k>s
)JgYkZ
k_k_g?k_c
o}k_o
o_$g;k;)L%+%)%I-j%(!
g9o{w
k^k?o
k_g?k?o
g>o_s
g:o{s
JQF1B
k^k_k_g?g_
k_g>k]c
-l-lNsV
F0F1JQw
g?g?c?g?k_
k?g?k?o
o_k_o^
-l)l)Jc
kZo{s
o{JRB
g_k_k_g_
k_k_g?k_k?
%+! )J)J5
g;g<o^o
k_k_o
k_g?g>g?k_
k?g?g?k_o
%)%)5
g9kZkZo{
o{g9c
o_o_k?k?k_g?k_
g_k_g_
k_g?g>k_k^k^g>
g?#k_k>g;
%))J^
o~g>k_k_g?g>g>k?g?k_g?o_k_k^k^k_o
! -k)J-j-k
g>g?k_
g>k^g
k?g?g?g_g>g?k_k_g>o_c
g;-l1
kZo{o{s
o[kZc
)L)Ls
k_k?k?g?g?k_k_
k_k_g?k?
k_k_c
k]k_k_
k_g?g?
k^k]o~k<-l-l)*! %*%))J-k1
k^k_g?k?
g?o_Z
g;%)-k-kc
g9o{o{s
s}kYg8-n)Mw
k?g?k_k^k^
g?k_g?k_c
g>k_g?k?o~Z
-l%+-N!
g<o]o_k_g
g?k_g?o~g<
k_k_g?k_k_w
g;o})K-k1
o}k\o}o
k_g?g?k_k
k_k_g?c
g>k_k_g?k_k_o{! %))Jc
g9k[s|s
o{k9)I-
-m%*-k
o_k?g?k_o
g?g=s
g>g>k_k_k^s
-m%+%*-l)I
k?g?o_k]g<)J
k_k^k^o
k\k]5
k_g?k_g?g?k_g?k_k_
g?k_g?k_o~{
c:%*)j^
g8kZozs
s|o{-i9
F2F2-M!
! ! %*)Kg9{
o}k_g>k_k_
k_k^s
%)! -j9
o}k_k^
g>g_g?g_
-l1l-l-j-j%*)K-N5
k_g?k_k^o
g^k_k_c
o~k=)J)Jc
g8kZo{w
EJRJ1Ns
o|)J=
J2J2!
%)%J!
)1g<k]o
o~k_k?k_k_g?k_k^w
-R%'!
%+%+^
g?+g_g?c?k_k_g?g?k_k?g?k_k_k^w
)I)I-j1
-K)J%)%(%)%*%)
%+-Uw
g>g?k_k~k~
k_k_k>c
k[%+)J-kg
g;o\s
-K-m5
)K-l1
o~g?g?k_k_o
1m-k%)!
k^k_k_
k?g?k_g?
k_3g>k_k_c
k\-m1m%*)L%))J)I)I%*)*! ! !
k_g?g
k_g?k_k_g?k_k?k_o_c
k\%*1
k[o}ozs
JRF1JRF0R
k<k\^
g:%)!
o~g?k_c
-l)K%(
k_0o_w
o}-m%
%)%(!
%*% !
k^k?k_g?k_g?k_k_k?o^g
k[)L-k1
g9o{o{w
%*%+A
k^k^gY_
%()K5
k]k_g?
g?6k?g?k?k^k^k_o
%))I!
! -l)M^
o_k_k_g?g>o
k^o~{
g9kZo|s
'I+k
)1k\o}%(%(!
-k-k!
k_0g]k~k]V
% %()I)I
! ! %
k_k?k>g>k[
%I-k)Kg9kYozs
c8c7V
)K%J5
o_o_k?g?k?k_Z
oyc6^
! ! !
g9-k)J!
k_k_g?
c=g>g>g?g?k_
k_k_o_
%*%))I)J
! !*)K{
o_o_g>g
)K)J)Jg8g9o{o{s
%iJSV
Ns-k)J9
g:o~o
g=k_k_g>k_k_Z
kXkXZ
%J)kc
o}o}k_k?k_o
g?=k?g?k_k_o
k^g>o
)2%-!
%H!(!
!(%H)I%))J%(%I!
! %+!
%+%+-l-
k^g=^
g9)j1lF2g9kZo{s
` b.j!
o_k_g?k_g>o
k^k^Z
_o_o_g>k_g?o
k^g?k_
k_<o^w
%*)J-k1
%*%*)K)K-k1
1to|g;c
-m)LF3c
o{o{s
B& %
k_k_o_k_o_k_k_k^k^o_k_^
! )I-j-k1
g>k_g?g?g_k_k_o
k_k_o_{
-l%+!
!(%(! %+)K
/gYg8%*%)
! )L5
%()I-kV
)K)*!
B0F0Z
g9o{s
d4nj;
k^k_o
-j1k-k%)
g9o[k:g9)*!
% )*1l
$g9kY%*%
%+)Lc
k_k_g?k_k_o
k_g?k_k_o_g:_
%(%H{
g:%*!)!
! 1lNTw
)K%,5
kZo{o{w
-k)j%)!)!
)i-j)J%)!
o~k_o_k^o
%*! !
! -kZ
%(NsR
g9o{s
o_o_k^o
)J)J-k)J
!(!(g9
-k)J!
g;%+!
! %*k:
Nvo~o
o{kZs
g9%)! )*!
%*)K^
)J-k-k
S3S3SSSS!I
! )K)L!
k\k}k]s
%)-k-k5
kZo{s
g_k_k]o
o_k^s
kZs~o]s~g<! ! 5
!))J-l1
g9%)!
g>o_o
o~o~^
9.9LI
1n! %*-k
-k%)!
F1JRw
4%J!(%*!
o_k_k
!(%I%I%)%*-
k:kZkZ)J%)!
%)g9kZ
),)K%*! ! kY
kYg9)J)J%)!
! !
% -Kk;
)J)J!
! )J9
<)K%G%G
%*%)^
! )K{
k]o^o
! ! 9
ozo{o{s
1W)J!(
%()JV
g:)K!
g;k]k]k^s
F1g9kZkZo{s
/*3L-
c8))
-k)J9
%*g;^
g=g<o~1
g9kZo{s
#H'j+
-k%)1
o~k]k^g>g<)M%)!
-kFQV
g9kZo{s
!()I-k
g9kZkZs
NsJR1
k_g>k^k^k_o_s
F1JQNsNsV
o{o{s
BqBP.
&)J)J%)%)%I
kYo|s
% F1NsR
g9o{s
kZ%*)I1
%*-l)kk[c
)K)K-l5
! )K)K
g9o{s
OSOSS
! )K5
-k-kR
kZo{s
g9g9)k!)))
)LNuV
1v-5!
)J%)-k-l1
%)%))JV
kZo{s
%K%*1k
! g;^
k\k^o
%--n!
g9kZs
o~o^g>o
o_k_s
!(! )J!
)J1kc
kZo{s
k_k_o_k^k]o
F1kZk[o|s
OSOSO
cR%d!'
-l)L)J)K
-lkZo{s
k?k_g?g?k_g_
k^k^o
g9k[o{s
1Xs_k_k_g>g>g?k_g^k_g
kZo{o{s
o[k9WuF
g?g?c
g?g?k_g_g>o
k?k_o
! ! )J1
kZo{o{s
k_k_g>g?g?k_g?g=k^k?k_o~{
! %))*5
o{kZs
?o)H%H)*-*
)K%)%)
k?o_k_
k_k_k>k_k?k_g:)K!
)Jg9kZo{s
-J%J!(!H)jGqG
SJ[1R
)I%H%*! !
g?k_g_k_g?k_k_g?k_o~w
! %)^
kZkZo{s
)H%)!
%+%+%)! !
^g=k_g?k?o_k_k_o
k[)J1
g9kZo{s
-k-j%(
)k1v{
g>k_o
k_g;%,!
kZkZs
[K_-_M!%
%*%+-m^
k_g?k?k_o
kZo{s
)I%(%H!(!
%)%*1t^
k^k_k_k
k_g?k?k_k_g?g?o_o
o{)J%)c
g9g9o{w
%j!(
o~k_o
g?k_g]g]
%(g8g8kYg:)+!
! ! 5
kZ-k-k=
!)%K)49
o_k_o_k?
k?k_g
g?k_k^g>k^k^^
! -J5
k_k_o
k_k_g?k_o_{
B)*-k-l)K1
g9o{s
! )-9
k_o_g>k?o_{
%+NuZ
-k)I1
g9g9kZs
_k-h!&!
k^o_k_k?
k_g?g>o
o^o^^
JRNsg9Z
kYozs
k_k^k^k_
g?k_w
g[k_k_o_o
F1JRR
kYo{s
g?k]k]k_k?k^^
g<k]o_o
F1F1NsR
g9kZo{s
gXc7-
o_k^k_o_V
1pg8g8
k[k^k=k_k_o}g;c
%*)J9
F1JRNsV
g9o{s
1l-K)*
!()J^
F1JRNsZ
kZo{s
o[k|g;b
%,)K%*)J)J^
NvNVR
Nu! %)%)-kB
F1JRZ
g9o{s
oykXc
JSF1)*%
[,_M)K!
1x-XZ
JT-m!
%)%I1
g9o{s
o{kZg9^
NsJRF1B
%*%)!
%*)L1
1n)K%+%*
%))J5
g9o{s
o{kZg9^
NsJRFRB
g:1l%
)K! %+%+!
)J)k5
kZo{s
o{kZg9c
NRNQF2B
)J-k1
-k%*! % )K%)!
)J-k-kkZs
o{kZg9c
RuNQNQ>0B0-k%)!'
-k%I-j)I!
%)-kw
o{o{kZg9c
-k-k!
o{kZkZg9c
NuVUR
F1F01l)K
%(%)b
JRF2R
)JJRNsw
o{kZkZc
FsFsFPB/1
-M1m)+
F1NsNsR
g9o{kZo{s
k{k{o9k
NtNSNSB1B09M1
F1F1NsR
g9o{o{s
o{o{kZg9c
NsJRF1B
1l))!i
o~o~k~o_k_o~{
F1F1JRNsR
g9kZkZo{s
o{kZkZg9c
NsJRF1F15
k^k_o
k_k^g
F1JRJRNsR
g9kZkZo{o{s
o{kZkZg9c
NrJ1F1F05k5j
g>g^k_g?g_g_o
k_k_o_s
F1JRNsR
g9g9kZkZ
o{kZkZg9c
RtNrNRF2>
o}o_k_o
k_g_c>g?c?g?k_k~s
o_k_5
JRNsR
o{kZkZg9c
NrJQF
o}k_o_k_g_
g_g?g_g?c
k_k_s
F1JRNsV
kZkZo{o{
o{kZkZg9_8[
JtFRBQ>05
k?k_o
k_g?g?g_
g? g>k_g?k_
C! )KV
NsF1JRNsV
o{kZg:g:b
BQF0JQB
k_g?g>k^k
_k_g?c
g?g?g>g>k_k?k\
F1NsR
o{kZgyc8f
FQB0B
)I!(!(
g_k_g?k?g_g?g?c
g? k_g>k_
%)-k^
F1JRF1
-k)J%)!
)J)J1
F1NsR
g9kZo{
o{o{kZg9c
NsJRF1F1B/)i%(%(
k=k_g?k_k_g>g_
g? k_g?k^{
F1JRR
g9kZo{s
o{kZkZg9c
NsJRFRB2=
)L%)%)
o^g>o_k_
k?k_k_g?o~k\
F1JRNsV
kZo{s
o{kZkZg9c
NsRtJ2F
o_o_k_k_k?
g?o_g?k^o
F1JRNsV
kZo{s
o{kZkZg9c
NrJrNsB1B
-k%H!'
o}o_k_k^g=
k_k_g?o_o~Z
F1JRNsV
kZo{s
o{o{kZg9c
NrJrJrBPF
1m% )*
_Jc3%E
o~g>g>k_k_
k_g?g?k_g?k?k^Z
F1F1JRR
g9o{s
o{o{kZg9c
NrJQJ1J1-I!i!i
ClCH_
o_k_o
g? k_g?g>o_^
F1F1NsNsR
kZo{s
o{o{kzc8g9^
JRJ2N2>
g?g?c
g]g]g?k_k?g?o
g9kZo{w
s|o|kZkZg9c
NtJtJQF1F
1k!J!J
g_k?k_k_
kZo{s
o{kZkZg9c
NsJRF1F
-l!H)j!C
g? g_g?g?o_k?k]V
g9kZkZo{s
o{kZkZg9c
NsJRF0J1-J!i!i%'%'!EV
k_c?o
k_c?k_
k_k?k?Z
-Q1r5
F1JRNsNs
g9kZo{o{s
o{o{kZg9c
VsRRJRF1B
-m)*)*!(!'!HV
k?k_k_g>
k_k?k_k_V
F1JRNsNsR
o{o{s
o{kZkZg9c
JrJQFQJ
1j%+!
g_o^o^o_k?g_c?
k?g?k?k_k_V
F1JRNsR
o{kZkZg9c
JtJRF1:mB
o_k_g?c?c?g>
F1JRNsV
o{o{kZg9g
NuFRF26m>
o~k_o
g?g?k_g]g]
k?k?k^k>o~Nv
F2JSR
g9kZo{o{
o{k{gZk9g
NsJSF2F0-j! )K%)
[/_Pg
g_k]k^g?k?c?c?g
k?g?k?o_g=V
F0JRR
g9kZo{s
s|o{k[kZc8c8^
N0J/F
k_k_g
k?k_g?g?c?k?
k?g?g?k?
o_g>o~Z
F1JRNtV
g9kZo{s
o{o{kZg9c
NsJRF1B
k^k_k_g?k?
k_k_o~Z
F1JRNsV
g9kZo{s
o{kZkZg9c
NsJRF1B0B
%J!*!%!%%es
g>k_k_o
k_g?g?g_g?g_c
k_g?k_g?k_o
F1JRNsV
g9kZo{s
o{o{kZg9c
RsRsJ2J2F0B
-l!*!'!'%cs
! -mg;w
g>k_k_g?k_k_g?k_g?c
k_g>k_o}
JRNsV
g9kZo{s
o{kZkZg9c
RsJRJ1B2B
-j%(%()(!b_Qg
%(!'%L!,)M1
g_g?g?g_g?g?g
F1NsR
g9kZo{s
o{kZkZg9c
NuJrFQF0B
-k1k%)
k^o~k_k^k_g>g?g?k?g?g?k_
k_k_o~
F1NsR
g9kZo{s
o{o{kZg8_
NtNpJPF1F
)K)J!(! !
o_g>k_
F1NsR
g9kZo{s
o{o{kYg9c
RsJqJQFQB0
)JkS%"
)K! %*)K)Lc
k>g>k_o
k_k_o
F1JRR
kZo{s
o|oygXg9g8b
JSJR$
)J%)!
%)! ! w
k_g?k_k_o^o
F1JRNsV
g9o{s
o{o{kZg9g9c
! ! ^
F1JRNsV
g9kZs
o{o{kZkZc
)J)J%*!
F1NsR
g9kZo{s
o{kZkZg9c
F1NsR
g9kZo{s
o{kZg9g9
F1JRNsNsRtR
JRF1F1
F1NsR
kZo{s
F1JRNsR
JRF1JQF1B
-k-k9
F1F1NsR
kZo{s
F1JRNsR
NsJRJrF1F1B
F2JRR
kZo{s
F1NsR
NsF1JRF1B
F1JRNSR
g9o{s
F1JRR
g9kYkZkz
g9g9g8^
NsNsJRF1F1B
g9o{s
F1JRR
g9kZo{o{
o{o{kZkZg9g9c
NsNsR
g9o{s
B0J2NsV
g9o{s
o{o{kZg9g9c
kZo{s
F1JRNsV
g9kZo{s
o{o{kZg9g9c
g9kZo{s
JRF1B
F1JRN
g9kZs
o{o{kZ
g9g9kZo{s
kzkZ^
g9o{s
kZkZ_
JRF1F1JRNsR
kZo{s
o{kZc
kZo{w
o{kZc
NsJRJRNsR
kZo{w
o{kZc
g9kZo{w
kZg9^
g9o{s
o{g9c
g9kZo{s
o{kZg9^
g9kZs
o{kZg9c
g9kZo{s
o{kZg9g9
g9kZkZo{s
o{kZkZ
kZkZo{o{s
o{o{s
k{k|w
[=g\gYg\.T
g\c[_]c\ozc\g\[]g\c[o{c[g\[\g\24
OYBw*
_ZkZ[ZkZ_ZkZOZkZ[ZkZ_Zw
k]k]{
g\g=5
5sF6g]F
o|g]k}
GIFfAgGIF87a
FRPTH
FPTHAFWORF:Projecten:Troi FM Plug-In:Troi-FM-Plug-in1.1b2:Files:TrExport.tab